home *** CD-ROM | disk | FTP | other *** search
/ The 50th Anniversary of …National Assembly Library / The 50th Anniversary of the National Assembly Library.iso / main.dxr / 00057.ls < prev    next >
Encoding:
Text File  |  2002-02-18  |  316 b   |  22 lines

  1. on mouseEnter
  2.   cursor([121, 122])
  3.   repeat with aa = -6 to 109
  4.     set the locH of sprite 44 to aa
  5.   end repeat
  6.   sprite(45).visible = 1
  7. end
  8.  
  9. on mouseLeave
  10.   cursor(-1)
  11.   sprite(45).visible = 0
  12.   repeat with aa = 109 down to -6
  13.     set the locH of sprite 44 to aa
  14.   end repeat
  15. end
  16.  
  17. on mouseDown
  18. end
  19.  
  20. on mouseUp
  21. end
  22.